TLS 透传(TLS passthrough):一种网络/代理转发方式,负载均衡器或反向代理不终止、不解密 TLS,而是将加密后的流量原样转发到后端服务器,由后端完成 TLS 握手与证书处理。(也常写作 TLS pass-through)
The load balancer uses TLS passthrough to forward encrypted traffic to the backend.
负载均衡器使用 TLS 透传,将加密流量转发到后端。
In Kubernetes, enabling TLS passthrough lets the ingress controller route by SNI while the application terminates TLS and manages certificates.
在 Kubernetes 中,启用 TLS 透传可以让 Ingress 控制器基于 SNI 做路由,而由应用本身终止 TLS 并管理证书。
TLS 是 Transport Layer Security(传输层安全协议)的缩写;passthrough 由 pass(通过)+ through(穿过)构成,在计算机网络语境中指“不做处理直接转发”。合起来表示“TLS 加密流量不在中间层解密,而是直接穿透到后端”。